home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / FCOPY31.ARJ / FCOPY.H < prev    next >
C/C++ Source or Header  |  1992-05-12  |  600b  |  27 lines

  1. /*  FCOPY.H  --  function prototypes  */
  2. /*  Updated May 12, 1992  */
  3.  
  4. #define DISKFUL -2
  5.  
  6. #if __STDC__
  7. #define _Cdecl
  8. #else
  9. #define _Cdecl    cdecl
  10. #endif
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. /* function prototypes */
  17.  
  18. int     _Cdecl      _copyfile (int source, int target, char far *buf,
  19.                         unsigned bsize);
  20. int     _Cdecl      _farread (int handle, void far *buf, unsigned bsize);
  21. int     _Cdecl      _farwrite (int handle, void far *buf, unsigned bsize);
  22. int     _Cdecl      fcopy (char *sourcename, char *targetname);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.